.PHONY: install lint typecheck test build

install:
	python -m pip install -e ".[dev]"

lint:
	ruff check .

typecheck:
	mypy apps packages

test:
	pytest -q

build:
	docker compose build

